UNPKG

flowbite-svelte-son

Version:

Flowbite components for Svelte

12 lines (11 loc) 253 B
// src/routes/components/[slug]/+page.js export async function load({ params }){ const post = await import(`../${params.slug}.md`) const { title, dir } = post.metadata const content = post.default return { content, title, dir, } }